fix: store CLAUDE.md as regular file, not symlink#7
Merged
Berkay2002 merged 1 commit intomainfrom Apr 17, 2026
Merged
Conversation
The blob mode was 120000 (symlink) but its content was a 2873-byte markdown file. Linux checkouts succeeded (symlink targets up to PATH_MAX), but macOS/Windows checkouts failed with 'File name too long' because the target exceeds individual name-component limits. Fix: re-stage as 100644 so every platform sees a regular file.
There was a problem hiding this comment.
Pull request overview
Fixes cross-platform git checkout failures by ensuring CLAUDE.md is stored as a regular file (not a symlink), preventing macOS/Windows “File name too long” errors during CI checkout.
Changes:
- Re-stages
CLAUDE.mdfrom symlink mode (120000) to regular file mode (100644) while keeping the blob/content unchanged. - Unblocks release/CI checkout steps on macOS and Windows runners.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
CLAUDE.mdhad git mode120000(symlink) but its actual content was a 2873-byte markdown file. Linux checkouts succeeded (symlink targets up toPATH_MAX), but macOS/Windows checkouts failed witherror: unable to create symlink CLAUDE.md: File name too longbecause the target exceeds per-component name limits.100644so every platform sees a regular file. Blob SHA is unchanged (9bd81e4b), so the working-tree content is identical.Test plan
git ls-files --stage CLAUDE.mdshows mode100644v0.0.0-test.5after merge)Failure reference: run 24541444393 — Linux succeeded, macOS arm64 / macOS x64 / Windows x64 all failed at checkout with
File name too long.